home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / stats / misty10a.arj / MISTY.DOC < prev    next >
Text File  |  1994-02-12  |  12KB  |  265 lines

  1.  
  2.                      Misty 1.0A  Expression Evaluator                  p 1.
  3.                 copyright 1994 by Peter Neuendorffer
  4.                                                               pg.
  5.                          I.  INTRODUCTION                     1
  6.                              - What it does
  7.                              - Shareware
  8.                              - Installation
  9.  
  10.                         II.  CALCULATION                      2
  11.                              - Expressions
  12.                              - Operators and Variables
  13.  
  14.                         III. FEATURES
  15.                              - Evaluate
  16.                              - Store
  17.                              - Retrieve
  18.                              - History
  19.                              - Log
  20.                              - Info
  21.  
  22.   I. INTRODCUTION
  23.  
  24.         What it does.
  25.         This software functions much like a pocket calculator. You
  26.         can do arithmetic and store formulas as numerical expressions.
  27.         Numerical expressions can be arithmetic or a combination of
  28.         variables. The expression could be 2+2, or a+b, or it could
  29.         be the formula for the hypotenuse of a triangle (sqrt(b^2+h^2)).
  30.  
  31.         You can store these expressions on disk with the Store feature.
  32.         You can save your answers on disk with the Log feature. You
  33.         can call up previous answers and variables from the current
  34.         session with the History feature. You can recall stored
  35.         expressions and edit them again with the Retrieve feature.
  36.         A crib sheet of information is provided in the Info feature.
  37.  
  38.         Say your expression is "a+b" (without the quotations). You
  39.         could evaluate this by entering in "a+b" (without the quotations)
  40.         in the Evaluate option. Then fill in the variable values for
  41.         a, and b. Then press enter. The answer is given. More on what
  42.         you can do in the section below entitled CALCUALATION.
  43.  
  44.         This software handles addition, subtraction, multiplication,
  45.         division, exponents (including fractional exponents), sine,
  46.         cosine and tangent. You can use decimal or "real" numbers.
  47.         Scientific notation is supported, such as "2E+5".
  48.  
  49.         Shareware.
  50.         This program is Shareware. It is not free.
  51.         You may distribute it freely, and  use it yourself for a period
  52.         of up to three weeks. Then, you are asked, on the honor system,
  53.         to pay for it by sending $15.00 registration fee to:
  54.  
  55.                     Peter Neuendorffer
  56.                     1399 Commonwealth Ave #11
  57.                     Allston MA 02134
  58.                     Telephone 617-254-2213 voice (7-11PM EST)
  59.  
  60.         Installation.
  61.         Copy all the files to an empty sub directory on your hard drive.
  62.         A hard drive is recommended but not mandatory.
  63.         Run the software from the drive and directory that it is located.
  64.         From DOS run MISTY.  This is NOT a Windows program.
  65.  
  66.  
  67.  
  68.   II. CALCULATION                                                     p 2.
  69.       -Expressions.
  70.       In the English, or other word language, an expression is a
  71.       collection of symbols that takes on one agreed upon  meaning.
  72.       Much as in word languages, an arithmetic expression is a collection
  73.       of numbers or variables (operands) combined with arithmetic symbols
  74.       -such as "-" or "+"- (operators). These symbols are combined according
  75.       to certain rules, or the "math". If this sounds like gobbledygook,
  76.       here are some examples of expressions that this software excepts,
  77.       and evaluates:
  78.                expression   ....operator.....     means
  79.                   5              constant         the number five.
  80.                   5+2       +    addition         five plus two.
  81.                   5-2       -    subtration       five minus two.
  82.                   5*2       *    multiplication   five times two.
  83.                   5/2       /    division         five divided by
  84.                                                   two giving a decimal answer.
  85.                  sin(2)    sin   sine             the sine of two.
  86.                  cos(2)    cos   cosine           the cosine of two.
  87.                  tan(2)    tan   tangent          the tangent of two.
  88.  
  89.                  a+b        +    addition         The value of a plus
  90.                                                   the value of b
  91.                  4^2        ^    exponent         4 squared  (4*4)
  92.                  4^(1/2)    ^    exponent         the square root of 4
  93.                  sqrt(8)   sqrt  square root      square root of 8
  94.                  2E+1       E    scientific       2 times 10 (once)
  95.                  2E-1       E      "              2 times .1 (once)
  96.              -----------------------------------------------------
  97.            Actual expressions can be quite long:  (a*b/c)+0.5^(3.1)-2/4
  98.            In addition the trigometric constant "pi" is supported as pi.
  99.             -----------------------------------------------------
  100.             You may enclose parts of the expression in parentheses ()
  101.             For example, (4+b)*6 is allowed, and is different
  102.             from 4+b*6 in the order that the numbers are combined.
  103.             The first example adds 4 to b first, while the second
  104.             multiplies b times 6.
  105.             ------------------------------------------------------
  106.             You may use the single letter variables a through z in
  107.             your expressions, excepting the letter e which is reserved
  108.             for scientific notation.
  109.             ------------------------------------------------------
  110.   - Operators and Variables.
  111.        In the order that they are evaluated by the software:
  112.                    + -             "unary" a negative number such as -10
  113.                    E               scientific
  114.                    ^               exponent
  115.                    sin  cos tan    trigometric functions taken on angles
  116.                                    that are given in radians.
  117.                    multiply        divide
  118.                    add             subtract
  119.     --------------------------------------------------------
  120.     Variables always have a given value at the time you evaluate your
  121.     expression. The variable letters you use "stand in" for the
  122.     value, which you fill in. Thus is your expression is a+b-c, then
  123.     you need to fill in the values of the variables, such as a=1, b=2, c=3.
  124.     This software does not use formulas with the equals sign. If you
  125.     enter in a formula for an expression, such as a=b+c, then everything
  126.     to the left of the equals sign, including the equals sign, is ignored.
  127.    ----------------------------------------------------------
  128.    Positive and negative numbers from -10^36 to 10^36 are supported.
  129.    The accuracy of fractional exponents less than one varies. 2^(1/3)
  130.    is quite accurate to four places. 2^(1/3.1) is not so accurate.
  131.    Numbers are generally significant to 10 places. Such as 1234567890
  132.  
  133.  
  134.   III. FEATURES                                                      p 3.
  135.  
  136.       -Evaluate.
  137.       This is where you get your answers and evaluate expressions.
  138.       From the main menu, select Evaluate with the up and down arrow
  139.       keys, and press Enter.
  140.  
  141.       Now enter in an expression. When you press Enter any time you
  142.       enter an expression, the expression is "remembered" for the
  143.       next time you enter in an expression.
  144.  
  145.       You are taken to a black screen where you see your expression.
  146.       If there were no letter variables in the expression, your answer
  147.       is given. Press Escape to exit back to the main menu.
  148.  
  149.       If there are letter variables in your expression, such as in the
  150.       expression s*b^3/4, you may fill in the values for the variables.
  151.       Use the up, down, left and right arrow keys to select the variable,
  152.       and type in the value. Don't press Enter till you are done.
  153.       After you press enter, your answer is given.
  154.  
  155.       Repeat the process, or press Escape to exit. The F10 key will allow
  156.       you to take the last answer anytime, and use it for a variable value.
  157.  
  158.       When entering in variables, you may use an expresssion, even one
  159.       involving other variable letters. If you use a letter that is
  160.       not in the expression, the value of the letter is zero.
  161.  
  162.       Some errors may occur. They could be "divide by zero" because
  163.       the calculation involved dividing by zero. Error in expression
  164.       ususally indicates that the expression is written incorrectly.
  165.       A circular reference means you have variables that depend on each
  166.       other.  Too many terms means the expression is too complicated.
  167.       If the expression involves a fracional root of any kind of a
  168.       negative number than the error "attempt to take root of negative
  169.       number" is displayd.
  170.       -----------------------------------------------------------
  171.       You will find this process repeated in the Features "Retrieve"
  172.       and "History Display" with variations.
  173.  
  174.  
  175.      -Store.
  176.      You may wish to store an expression (not the answer) for a rainy
  177.      day. To do this, choose Store from the main menu. Then enter
  178.      in an expression. Then give it a title in words such as
  179.      "Area of a circle". Then you can add any notes you wish to include.
  180.      The expression is now stored on disk.
  181.  
  182.      -Retrieve
  183.      You retrieve an expression that is stored on disk. Choose Retrieve
  184.      from the main menu. Then you have two choices:
  185.  
  186.          Use stored expression:
  187.              You will see a menu of your stored expressions. If it is
  188.              longer than a page, use the page up and page down keys.
  189.              Use the up and down arrow keys to select an expression,
  190.              and press Enter. You are now brought to the same screen
  191.              as in Evaluate, and you can Evaluate the expression, or
  192.              press Escape to exit.
  193.  
  194.         Edit stored expression:
  195.             You can edit the expression, title, and notes, but you
  196.             will not be using the expresssion directly to get an answer.
  197.  
  198.  
  199.  
  200.     (III. FEATURES continued)                                        p 4.
  201.  
  202.     -History Display.
  203.      Whenever you evaluate an expression, a revolving "snapshot" is
  204.      taken of the screen. The last 20 answers are saved in this
  205.      history list. From the main menu, select History Display.
  206.  
  207.      Use the page up key to go back in the list. Forward with page down.
  208.      If you want to re-avaluate a previous answer, press F3 on the
  209.      screen you wish to evaluate. You are brought once again to
  210.      the same screen as in Evaluate.
  211.      Otherwise press Escape to exit.
  212.  
  213.    -Log.
  214.     You can store your current session on disk with a "Log" file. Note
  215.     this is different from the stored expressions, which do not contain
  216.     answers; and it is different from the History list, which only
  217.     exists while you run the program.
  218.  
  219.     Turn on the log file by choosing Log from the main menu. Enter a
  220.     file name such as save.doc. Press Escape. Now any time you
  221.     get an answer, the screen will be saved in the file save.doc on
  222.     disk. Turn off the log file by selecting Log again from the
  223.     main menu. If you use a log file name that already exists, the
  224.     log is added on to the previous file on disk.
  225.  
  226.    -Info: A screen of notes on this software. Select Info from the main
  227.           menu. Press Escape to exit.
  228. -------------------------------------
  229. This version 1.0A is corrected from 1.0. The main difference is that
  230. a better approximation for fractional roots was added.
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.